Package io.kpeg

Types

ParseError
Link copied to clipboard
data class ParseError(index: Int, message: String)
ParseResult
Link copied to clipboard
typealias ParseResult<T> = Either<List<ParseError>, T>
PegParser
Link copied to clipboard
object PegParser
The starting point to run the peg parser.
WhitespaceChars
Link copied to clipboard
object WhitespaceChars
Built-in whitespace variants.